<!-- 
	**Grouped List**
	Example HTML for a grouped sitemap, where the pages are listed according to depth.
 -->
<ul class="grouped">
	<li><h3><a href="/toplevel/">Top Level Header</a></h3>
		<ul>
			<li><a href="/top/child1/">Child 1</a></li>
			<li><a href="/top/child2/">Child 2</a></li>
		</ul>
	</li>
	<li><h3><a href="/toplevel/">Top Level 2 Header</a></h3>
		<ul>
			<li><a href="/top/child1/">Child 1</a></li>
			<li><a href="/top/child2/">Child 2</a></li>
		</ul>
	</li>
</ul>
